* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* SECTION */
.advisory-board-section {
    padding: 40px 0px 70px;
    background:
        radial-gradient(circle at top left, #fff1f2 0%, transparent 40%),
        radial-gradient(circle at bottom right, #fff7ed 0%, transparent 40%),
        #f9fbff;
    overflow: hidden;
}

/* TITLE */
.advisory-board-title {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: #1f2d3d;
    margin-bottom: 8px;
    position: relative;
}

.advisory-board-title::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #ff5f6d, #ff9966);
    display: block;
    margin: 12px auto 0;
    border-radius: 5px;
}

.advisory-board-subtitle {
    text-align: center;
    color: #6c7a90;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* GRID */
.advisory-board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* CARD */
.custom-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px 20px 28px;
    text-align: justify;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid transparent;
    background-image:
        linear-gradient(#fff, #fff), linear-gradient(135deg, #ff5a5f, #ff9800);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.custom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.custom-card-img {
    width: 110px;
    height: 110px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 4px solid #ff5f6d;
    overflow: hidden;
}

.custom-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* NAME */
.custom-card-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    text-align: center;
}

/* DIVIDER */
.custom-card-divider {
    width: 50px;
    height: 3px;
    background: #ff5f6d;
    margin: 10px auto 14px;
    border-radius: 5px;
}

/* PLUS BUTTON */
.custom-card-plus {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ff5f6d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #ff5f6d;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.custom-card:hover .custom-card-plus {
    background: #ff5f6d;
    color: #fff;
}

/* BIO */
.custom-card-bio {
    font-size: 17px;
    color: #434343;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.custom-card:hover .custom-card-bio {
    max-height: 400px;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .advisory-board-title {
        font-size: 2rem;
    }
}
